body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4ede4;
    color: #5a432a;
    margin: 0;
}
.nav{
    text-align: center;
    background-color: #bf9e66;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    position: relative;
}
.nav a{
    display: inline-block;
    text-decoration: none;
    color: #5a432a;
    padding: 16px;
}
.nav a:hover, .nav a.active{
    color: #8a6f45;
}
.logo{
  position: absolute;
  left: 10px;
}
.container {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #bf9e66;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h2 {
    margin-bottom: 15px;
}
input, button,::file-selector-button {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}
button,::file-selector-button {
    background-color: #8a6f45;
    color: white;
    cursor: pointer;
}
button:hover,::file-selector-button:hover {
    background-color: #725836;
}
.footer{
    padding: 20px;
    text-align: center;
    background-color: #bf9e66;
    box-shadow: 8px 0px 8px rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    width: 100vw;
}